home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / gfx / fu1_62.lha / fu / Formulas / MandelInvMix.Form < prev    next >
Text File  |  1994-04-14  |  210b  |  29 lines

  1. MandelInvMix
  2. {
  3.     {
  4.         x1=-1.5
  5.         x2= 1.5
  6.         y1=-1.1
  7.         y2= 1.1
  8.         par1.r=0.01
  9.         par1.i=0.0
  10.         bailout=2.0
  11.     }
  12.     {
  13.         c=pixel
  14.         t=par1/pixel
  15.         c=c-t
  16.         z=pixel
  17.     }
  18.     {
  19.         z=z*z
  20.         z=z+c
  21.         w=abs(z)
  22.     }
  23.     {
  24.         w>bailout
  25.     }
  26.     {
  27.     }
  28. }
  29.